翻訳と辞書
Words near each other
・ Pooka (band)
・ Pooka (disambiguation)
・ Pookah Makes Three
・ Pookey Bleum
・ Pookie (vehicle)
・ Pookkalae Sattru Oyivedungal
・ Pookkalam Varavayi
・ Pookkollai
・ Pookkottur
・ Pookode
・ Pookode Lake
・ Pooky
・ Pooky Quesnel
・ Pool
・ Pool (album)
Pool (computer science)
・ Pool (cue sports)
・ Pool (London cricketer)
・ Pool (surname)
・ Pool (website)
・ Pool Academy
・ Pool barb
・ Pool checkers
・ Pool chlorine hypothesis
・ Pool cleaner
・ Pool Department
・ Pool Edge
・ Pool Element
・ Pool factor
・ Pool fence


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Pool (computer science) : ウィキペディア英語版
Pool (computer science)

In computer science, a pool is a set of resources that are kept ready to use, rather than acquired on use and released afterwards. In this context, ''resources'' can refer to system resources such as file handles, which are external to a process, or internal resources such as objects. A pool client requests a resource from the pool and performs desired operations on the returned resource. When the client finishes its use of the resource, it is returned back to the pool rather than released and lost.
The pooling of resources can offer a significant performance boost in situations that have high cost associated with resource acquiring, high rate of the requests for resources, and a low overall count of simultaneosly used resources. Pooling is also useful when the latency is a concern, because a pool offers predictable times required to obtain resources since they have already been acquired. These benefits are mostly true for system resources that require a system call, or remote resources that require a network communication, such as database connections, socket connections, threads, and memory allocation. Pooling is also useful for expensive-to-compute data, notably large graphic objects like fonts or bitmaps, acting essentially as a data cache or a memoization technique.
Special cases of pools are connection pools, thread pools, and memory pools.
== Object pools ==
(詳細はdesign pattern for implementing pools in object-oriented languages, such as in the object pool pattern. Objects themselves hold no external resources and only occupy memory, although an already created object avoids the memory allocation required on object creation. Object pools are useful when the cost of object creation is high, but in certain situations this simple object pooling may not be efficient and could in fact decrease performance.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Pool (computer science)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.